Conda cours

Environment manager

Conda concepts, objetcs

Why using an environment manager?

Access

Conda distribution

Anconda cloud, the “conda hub”

See exo Conda Setup

About channels

Some conda channels

Channels list order

Command

simple commands

conda create env -n myenv # creation of a conda environment 
conda info --envs # list environments (* for the active one) 
conda activate myenv # active the myenv environment
conda deactivate # inactivate the environment
conda list # list packages (only in an active environment)
conda install package # installation of a tool/package
conda remove package # suppress the tool from the environment
conda env remove -n myenv # suppress the myenv environment

miniconda3

2 modes

interactive

configuration file

See exo Conda configuration

reproducibility